home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 July
/
07_02.iso
/
software
/
xq-xsetup
/
files
/
setup.exe
/
{app}
/
plugins
/
XQ Yahoo Messenger 4.xpl
< prev
next >
Wrap
Text File
|
2001-11-27
|
2KB
|
40 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0"
"TYPE"="1"
"COUNT"="2"
"UIPATH"="Internet\Instant Messaging\Yahoo Messenger"
"NAME"="Window Title"
"VERSION"="1.22"
"LANGUAGE"="VBScript"
"TEXT 1"="Main Window"
"TEXT 2"="IM Windows"
"DESCRIPTION 1"="You can change the title of the Yahoo! Messenger windows here."
"DESCRIPTION 2"="The main window contains your friend list, and the IM window is what appears while you have a conversation."
"DESCRIPTION 3"="NOTE #1: If you have Yahoo! Messenger open at the moment, you will need to close it so that the changes can take effect."
"DESCRIPTION 4"="NOTE #2: IM Windows is ignored by Yahoo! Messenger 3.5x, and both options are ignored under Yahoo! Messenger 4.x"
"DESCRIPTION 5"="Yahoo! Messenger may be obtained at http://messenger.yahoo.com/."
"AUTHOR"="Xteq Systems (Neil R. Turner)"
"CONTACTURL"="http://www.xteq.com/"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"="Fed up with Yahoo!? Try http://dmoz.org/."
sP="HKCR\TypeLib\{F0012D80-989C-11D3-B7C5-0090271D5CA7}\3.0\HELPDIR\@"
Sub Plugin_Initialize
s=RegReadValue(sP)
t=IniReadValue(s & "\cobrand.ini","APP TITLE","Caption")
Call SetUIElement(1,t)
t=IniReadValue(s & "\cobrand.ini","IM TITLE","Caption")
Call SetUIElement(2,t)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
t=GetUIElement(1)
s=RegReadValue(sP)
Call IniWriteValue(s & "\cobrand.ini","APP TITLE","Caption",t)
t=GetUIElement(2)
Call IniWriteValue(s & "\cobrand.ini","IM TITLE","Caption",t)
End Sub
Sub Plugin_Terminate
End Sub